home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Erich Tran',
- 'Copyright': u'',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_AutoSmallScratchRemoval():
- return {
- 'LowerContrastLimit': 10,
- 'RemoveDarkScratches': App.Constants.Boolean.true,
- 'RemoveLightScratches': App.Constants.Boolean.false,
- 'Strength': App.Constants.ScratchRemovalStrength.Normal,
- 'UpperContrastLimit': 20
- }
-
- def Do(Environment):
- # Auto Small Scratch Removal
- App.Do( Environment, 'AutoSmallScratchRemoval', Preset_AutoSmallScratchRemoval())
-
-